How do I silence strace's message "[ Process PID=15733 runs in 64 bit mode. ]" ?

Posted by Ross Rogers on Super User See other posts from Super User or by Ross Rogers
Published on 2010-03-06T00:35:01Z Indexed on 2010/04/24 17:03 UTC
Read the original article Hit count: 385

Filed under:
|
|
|
|

I'm using memoize.py, but strace keeps injecting the following into the program output each time a process is executed:

[ Process PID=15733 runs in 64 bit mode. ]

or

[ Process PID=16503 runs in 32 bit mode. ]

How can I silence strace such that it doesn't inject these statements into the log file? At the very least, I'd like these statements to only go into the output file that memoize.py is instructing strace to use. It's already telling strace to put its output into a specific file ithrough arguments -o /tmp/OUTFILE.

Note that strace is being called with the -f parameter to follow child processes.

© Super User or respective owner

Related posts about strace

Related posts about python